Other than native i386 code, the page fault handler in the guest for
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Fri, 1 Jul 2005 15:45:39 +0000 (15:45 +0000)
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Fri, 1 Jul 2005 15:45:39 +0000 (15:45 +0000)
whatever reason ran a stack_trace even though another one is run from
die(). Since screen space is limited, duplicating (perhaps long) stack
traces seems quite wasteful. Patch removing this duplication below/attached.
Signed-off-by: Jan Beulich <JBeulich@novell.com>
linux-2.6.11-xen-sparse/arch/xen/i386/mm/fault.c

index 99e2cccc403617eb3ee83329b3230640a284781e..6a89be621ba5876777701b0006dfb3a3b1e7a383 100644 (file)
@@ -474,7 +474,6 @@ no_context:
                       machine_to_phys(page));
        }
 #endif
-       show_trace(NULL, (unsigned long *)&regs[1]);
        die("Oops", regs, error_code);
        bust_spinlocks(0);
        do_exit(SIGKILL);